home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / Make / source / glob / configure.in < prev    next >
Encoding:
Text File  |  1997-08-18  |  548 b   |  23 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(fnmatch.c)        dnl A distinctive file to look for in srcdir.
  3. AC_PREREQ(2.12)            dnl Minimum Autoconf version required.
  4.  
  5. AM_INIT_AUTOMAKE(glob, 0.0, nodefs)
  6.  
  7. AC_PROG_CC
  8. AC_CHECK_PROG(AR, ar, ar, ar)
  9. AC_PROG_RANLIB
  10. AC_PROG_CPP            dnl Later checks need this.
  11. dnl These two want to come early.
  12. AC_AIX
  13. AC_MINIX
  14. AC_ISC_POSIX
  15. AC_CONST
  16. AC_HEADER_STDC
  17. AC_CHECK_HEADERS(memory.h unistd.h string.h)
  18. AC_HEADER_DIRENT
  19. AC_FUNC_CLOSEDIR_VOID
  20. AC_FUNC_ALLOCA
  21. AC_FUNC_STRCOLL
  22. AC_OUTPUT(Makefile)
  23.